home *** CD-ROM | disk | FTP | other *** search
/ mail.altrad.com / 2015.02.mail.altrad.com.tar / mail.altrad.com / TEST / office deutch / INFOPATH.NL-NL / INFLR.CAB / FL_ConvertaNumbertoaHexaDecimalString_snip_142638_ENU____.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Extensible Markup Language  |  2005-10-28  |  1KB  |  31 lines

  1. ∩╗┐<?xml version="1.0" encoding="UTF-8"?>
  2. <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  3.   <CodeSnippet Format="1.0.0">
  4.     <Header>
  5.       <Title>Convert a Number to a Hexadecimal String</Title>
  6.       <Author>Microsoft Corporation</Author>
  7.       <Description>Returns the hexadecimal representation of an integer.</Description>
  8.       <Shortcut>typeHex</Shortcut>
  9.     </Header>
  10.     <Snippet>
  11.       <Imports>
  12.         <Import>
  13.           <Namespace>System</Namespace>
  14.         </Import>
  15.         <Import>
  16.           <Namespace>Microsoft.VisualBasic</Namespace>
  17.         </Import>
  18.       </Imports>
  19.       <Declarations>
  20.         <Literal>
  21.           <ID>Number</ID>
  22.           <Type />
  23.           <ToolTip>Replace with an integer.</ToolTip>
  24.           <Default>48</Default>
  25.           <Function />
  26.         </Literal>
  27.       </Declarations>
  28.       <Code Language="VB" Kind="method body"><![CDATA[Dim hexString As String = Hex($Number$)]]></Code>
  29.     </Snippet>
  30.   </CodeSnippet>
  31. </CodeSnippets>